home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 242 / Issue 242 - April 2008 - DPCS0408DVD.ISO / Software Money Savers / VirtualDub / Source / VirtualDub-1.7.7-src.7z / src / system / source / a64_fraction.asm < prev    next >
Encoding:
Assembly Source File  |  2006-05-05  |  1.8 KB  |  59 lines

  1. ;    VirtualDub - Video processing and capture application
  2. ;    System library component
  3. ;    Copyright (C) 1998-2006 Avery Lee, All Rights Reserved.
  4. ;
  5. ;    Beginning with 1.6.0, the VirtualDub system library is licensed
  6. ;    differently than the remainder of VirtualDub.  This particular file is
  7. ;    thus licensed as follows (the "zlib" license):
  8. ;
  9. ;    This software is provided 'as-is', without any express or implied
  10. ;    warranty.  In no event will the authors be held liable for any
  11. ;    damages arising from the use of this software.
  12. ;
  13. ;    Permission is granted to anyone to use this software for any purpose,
  14. ;    including commercial applications, and to alter it and redistribute it
  15. ;    freely, subject to the following restrictions:
  16. ;
  17. ;    1.    The origin of this software must not be misrepresented; you must
  18. ;        not claim that you wrote the original software. If you use this
  19. ;        software in a product, an acknowledgment in the product
  20. ;        documentation would be appreciated but is not required.
  21. ;    2.    Altered source versions must be plainly marked as such, and must
  22. ;        not be misrepresented as being the original software.
  23. ;    3.    This notice may not be removed or altered from any source
  24. ;        distribution.
  25.  
  26.         .code
  27.  
  28. ;--------------------------------------------------------------------------
  29. ; VDFractionScale64(
  30. ;        [rcx] uint64 a,
  31. ;        [rdx] uint64 b,
  32. ;        [r8]  uint64 c,
  33. ;        [r9]  uint32& remainder);
  34. ;                    
  35. ;
  36. VDFractionScale64    proc    public
  37.         mov        rax, rcx
  38.         mul        rdx
  39.         div        r8
  40.         mov        [r9], edx
  41.         ret
  42. VDFractionScale64    endp
  43.  
  44. ;--------------------------------------------------------------------------
  45. ; VDUMulDiv64x32(
  46. ;        [rcx] uint64 a,
  47. ;        [rdx] uint64 b,
  48. ;        [r8]  uint64 c);
  49. ;                    
  50. ;
  51. VDUMulDiv64x32    proc    public
  52.         mov        rax, rcx
  53.         mul        rdx
  54.         div        r8
  55.         ret
  56. VDUMulDiv64x32    endp
  57.  
  58.         end
  59.